Blank lines between sourcecode [closed]

Posted by manix on Pro Webmasters See other posts from Pro Webmasters or by manix
Published on 2012-10-06T15:54:10Z Indexed on 2012/10/07 3:52 UTC
Read the original article Hit count: 174

Filed under:
|

I'm so confused with a strange behaviour. Actually I have edited some php files remotely with my PhpDesigner8 (a php editor). Everything goes right, but when my teammates reopen the files that I have edited the source code have blank lines like below:

class AdminController extends Controller

{

    function __construct()

    {

        parent::__construct();



        if (!$this->session->can_admin())

        {

            show_error('Solo para administradores.');

        }

        $this->load->library('backend');

    }

}

Instead of

class AdminController extends Controller
{
    function __construct()
    {
        parent::__construct();
        if (!$this->session->can_admin())
        {
            show_error('Solo para administradores.');
        }
        $this->load->library('backend');
    }
}

Did you have experience these kinds of problems?

© Pro Webmasters or respective owner

Related posts about code

Related posts about text-editor